home *** CD-ROM | disk | FTP | other *** search
/ Nebula 2 / Nebula Two.iso / SourceCode / NMK / Recorders / RScrollerVars.h < prev    next >
Text File  |  1995-06-12  |  761b  |  41 lines

  1. /***** RScrollerVars.h -- ScrollerCover variable holder object interface
  2.     NeXTstep Measurement Kit
  3.     by Alex Meyer <ameyer@phoenix.Princeton.EDU>
  4.     for computer science senior thesis
  5.     24 April 1992 -- created
  6. *****/
  7.  
  8. #import "TranscriptLinker.h"
  9. #import "structs.h"
  10. #import <appkit/Scroller.h>
  11.  
  12. @interface RScrollerVars : Object
  13. {
  14.     id linker;
  15.     NXAtom key;
  16.     double lastHitTime;
  17.     rScrollerRec stats;
  18. }
  19.  
  20. - initString:(const char *)str
  21.     tag:(int)tg
  22.     rect:(const NXRect *)rect;
  23. - incHits;
  24. - incKNOB;
  25. - incDECPAGE;
  26. - incINCPAGE;
  27. - incDECLINE;
  28. - incINCLINE;
  29. - incKNOBSLOT;
  30. - timeFrom:(double)time0
  31.     to:(double)time1;
  32. - incHist:(int)ind;
  33. - (unsigned)type;
  34. - (NXAtom)key;
  35. - (NXAtom)desc;
  36. - (unsigned)statsSize;
  37. - (void *)copyOfStats;
  38. - copyInStats:(void *)NewStats;
  39.  
  40. @end
  41.